home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / unix / src / rindex.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-13  |  82 b   |  7 lines

  1. #include <string.h>
  2.  
  3. char *rindex(char *str, int c)
  4. {
  5.   return strrchr(str, c);
  6. }
  7.